type net.conn

22 uses

	net (current package)
		iprawsock.go#L97: 	conn
		iprawsock.go#L199: func newIPConn(fd *netFD) *IPConn { return &IPConn{conn{fd}} }
		net.go#L183: type conn struct {
		net.go#L187: func (c *conn) ok() bool { return c != nil && c.fd != nil }
		net.go#L192: func (c *conn) Read(b []byte) (int, error) {
		net.go#L204: func (c *conn) Write(b []byte) (int, error) {
		net.go#L216: func (c *conn) Close() error {
		net.go#L230: func (c *conn) LocalAddr() Addr {
		net.go#L240: func (c *conn) RemoteAddr() Addr {
		net.go#L248: func (c *conn) SetDeadline(t time.Time) error {
		net.go#L259: func (c *conn) SetReadDeadline(t time.Time) error {
		net.go#L270: func (c *conn) SetWriteDeadline(t time.Time) error {
		net.go#L282: func (c *conn) SetReadBuffer(bytes int) error {
		net.go#L294: func (c *conn) SetWriteBuffer(bytes int) error {
		net.go#L314: func (c *conn) File() (f *os.File, err error) {
		tcpsock.go#L113: 	conn
		tcpsock.go#L297: 	c := &TCPConn{conn{fd}}
		udpsock.go#L120: 	conn
		udpsock.go#L278: func newUDPConn(fd *netFD) *UDPConn { return &UDPConn{conn{fd}} }
		unixsock.go#L69: 	conn
		unixsock.go#L195: func newUnixConn(fd *netFD) *UnixConn { return &UnixConn{conn{fd}} }
		writev_unix.go#L14: func (c *conn) writeBuffers(v *Buffers) (int64, error) {